home *** CD-ROM | disk | FTP | other *** search
/ Best Tools for JAVA / Best Tools for JAVA.iso / JAVA_ALL / IDE / SUBARTIC / SUB_ARCT / TEST / GROW_CON.JAV < prev    next >
Encoding:
Text File  |  1996-10-04  |  1.4 KB  |  46 lines

  1. /*
  2.  * $Id: grow_container_test.java,v 1.5 1996/10/03 19:46:51 hudson Exp $
  3.  * $Author: hudson $
  4.  */
  5.  
  6. package sub_arctic.test;
  7.  
  8. import sub_arctic.lib.interactor;
  9. import sub_arctic.lib.interactor_applet;
  10. import sub_arctic.lib.manager;
  11. import sub_arctic.lib.top_level;
  12. import sub_arctic.lib.simple_grow_container;
  13. import sub_arctic.lib.icon;
  14. import sub_arctic.lib.button;
  15. import sub_arctic.lib.base_parent_interactor;
  16. import sub_arctic.output.loaded_image;
  17.  
  18. public class grow_container_test extends interactor_applet {
  19.  
  20.   public void build_ui(base_parent_interactor top) 
  21.     {
  22.       interactor p1;
  23.  
  24.       p1 = new simple_grow_container(10,10,50,50, null);
  25.       top.add_child(p1);
  26.       p1.add_child(new size_tracker(0,0));
  27.     }
  28. }
  29.  
  30. /*=========================== COPYRIGHT NOTICE ===========================
  31.  
  32. This file is part of the subArctic user interface toolkit.
  33.  
  34. Copyright (c) 1996 Scott Hudson and Ian Smith
  35. All rights reserved.
  36.  
  37. The subArctic system is freely available for most uses under the terms
  38. and conditions described in 
  39.   http://www.cc.gatech.edu/gvu/ui/sub_arctic/sub_arctic/doc/usage.html 
  40. and appearing in full in the lib/interactor.java source file.
  41.  
  42. The current release and additional information about this software can be 
  43. found starting at: http://www.cc.gatech.edu/gvu/ui/sub_arctic/
  44.  
  45. ========================================================================*/
  46.